home *** CD-ROM | disk | FTP | other *** search
/ Freelog 121 / FreelogMagazineJuilletAout2014-No121.iso / Outils / Adobe-Air / adobe-air_13.exe / [0] / setup.swf / scripts / mx / containers / gridClasses / GridRowInfo.as < prev   
Text File  |  2014-03-27  |  694b  |  36 lines

  1. package mx.containers.gridClasses
  2. {
  3.    import mx.core.UIComponent;
  4.    import mx.core.mx_internal;
  5.    
  6.    use namespace mx_internal;
  7.    
  8.    public class GridRowInfo
  9.    {
  10.       
  11.       mx_internal static const VERSION:String = "3.0.0.0";
  12.        
  13.       
  14.       public var y:Number;
  15.       
  16.       public var preferred:Number;
  17.       
  18.       public var max:Number;
  19.       
  20.       public var height:Number;
  21.       
  22.       public var flex:Number;
  23.       
  24.       public var min:Number;
  25.       
  26.       public function GridRowInfo()
  27.       {
  28.          super();
  29.          min = 0;
  30.          preferred = 0;
  31.          max = UIComponent.DEFAULT_MAX_HEIGHT;
  32.          flex = 0;
  33.       }
  34.    }
  35. }
  36.